home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscfunct / crt.h < prev    next >
Text File  |  1987-05-09  |  2KB  |  73 lines

  1. /* crt support function header file */
  2.  
  3.  
  4. #ifdef LINT_ARGS    /* argument checking enabled */
  5.  
  6. #ifndef NO_EXT_KEYS    /* extended keywords are enabled */
  7.  
  8. void cdecl crt_cls( void );
  9. void cdecl crt_home( int );
  10. int cdecl crt_get_mode( void );
  11. int cdecl crt_get_page( );
  12. void cdecl crt_line( int, int, int, int, int );
  13. void cdecl crt_place_cursor( int, int, int );
  14. int cdecl crt_read_pixel( int, int, int );
  15. void cdecl crt_scroll( int, int, int, int, int );
  16. void cdecl crt_set_mode( int );
  17. void cdecl crt_set_page( int );
  18. void cdecl crt_where( int *, int *, int );
  19. void cdecl crt_write_pixel( int, int, int );
  20.  
  21. #else            /* extended keywords not enabled */
  22.  
  23. void crt_cls( void );
  24. void crt_home( int);
  25. int crt_get_mode( void );
  26. int crt_get_page( );
  27. void crt_line( int, int, int, int, int );
  28. void crt_place_cursor( int, int, int );
  29. int crt_read_pixel( int, int, int );
  30. void crt_scroll( int, int, int, int, int );
  31. void crt_set_mode( int );
  32. void crt_set_page( int );
  33. void crt_where( int *, int *, int );
  34. void crt_write_pixel( int, int, int );
  35.  
  36. #endif    /* NO_EXT_KEYS */
  37.  
  38. #else            /* no argument checking */
  39.  
  40. #ifndef NO_EXT_KEYS    /* extended keywords are enabled */
  41.  
  42. void cdecl crt_cls( );
  43. void cdecl crt_home( );
  44. int cdecl crt_get_mode( );
  45. int cdecl crt_get_page( );
  46. void cdecl crt_line( );
  47. void cdecl crt_place_cursor( );
  48. int cdecl crt_read_pixel( );
  49. void cdecl crt_scroll( );
  50. void cdecl crt_set_mode( );
  51. void cdecl crt_set_page( );
  52. void cdecl crt_where( );
  53. void cdecl crt_write_pixel( );
  54.  
  55. #else            /* extended keywords not enabled */
  56.  
  57. void crt_cls( );
  58. void crt_home( );
  59. int crt_get_mode( );
  60. int crt_get_page( );
  61. void crt_line( );
  62. void crt_place_cursor( );
  63. int crt_read_pixel( );
  64. void crt_scroll( );
  65. void crt_set_mode( );
  66. void crt_set_page( );
  67. void crt_where( );
  68. void crt_write_pixel( );
  69.  
  70. #endif    /* NO_EXT_KEYS */
  71.  
  72. #endif    /* LINT_ARGS */
  73.